home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
C
/
LIB
/
UNIXLIB37B
/
!UnixLib37
/
src
/
c
/
abs
< prev
next >
Wrap
Text File
|
1996-11-09
|
626b
|
32 lines
/****************************************************************************
*
* $Source: /unixb/home/unixlib/source/unixlib37/src/c/RCS/abs,v $
* $Date: 1996/04/19 21:26:42 $
* $Revision: 1.1 $
* $State: Rel $
* $Author: simon $
*
* $Log: abs,v $
* Revision 1.1 1996/04/19 21:26:42 simon
* Initial revision
*
***************************************************************************/
static const char rcs_id[] = "$Id: abs,v 1.1 1996/04/19 21:26:42 simon Rel $";
#include <stdlib.h>
int
abs (register int x)
{
return ((x < 0) ? -x : x);
}
long
labs (register long x)
{
return ((x < 0) ? -x : x);
}